public static enum Algorithm.GraphSortOrder extends java.lang.Enum<Algorithm.GraphSortOrder>
| Enum Constant and Description |
|---|
ASCENDING |
AVERAGE_WEIGHT |
DESCENDING |
NONE |
| Modifier and Type | Method and Description |
|---|---|
static Algorithm.GraphSortOrder |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Algorithm.GraphSortOrder[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Algorithm.GraphSortOrder NONE
public static final Algorithm.GraphSortOrder ASCENDING
public static final Algorithm.GraphSortOrder DESCENDING
public static final Algorithm.GraphSortOrder AVERAGE_WEIGHT
public static Algorithm.GraphSortOrder[] values()
for (Algorithm.GraphSortOrder c : Algorithm.GraphSortOrder.values()) System.out.println(c);
public static Algorithm.GraphSortOrder valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null